home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / String Mak244058102001.psc / String Maker / Main.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-05-05  |  4.7 KB  |  151 lines

  1. VERSION 5.00
  2. Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "String Maker V1"
  5.    ClientHeight    =   3915
  6.    ClientLeft      =   165
  7.    ClientTop       =   735
  8.    ClientWidth     =   5205
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3915
  11.    ScaleWidth      =   5205
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.TextBox Text2 
  14.       Height          =   2655
  15.       Left            =   120
  16.       MultiLine       =   -1  'True
  17.       ScrollBars      =   3  'Both
  18.       TabIndex        =   1
  19.       Text            =   "Main.frx":0000
  20.       Top             =   600
  21.       Width           =   4935
  22.    End
  23.    Begin MSComctlLib.StatusBar Status 
  24.       Align           =   2  'Align Bottom
  25.       Height          =   255
  26.       Left            =   0
  27.       TabIndex        =   6
  28.       Top             =   3660
  29.       Width           =   5205
  30.       _ExtentX        =   9181
  31.       _ExtentY        =   450
  32.       _Version        =   393216
  33.       BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628} 
  34.          NumPanels       =   2
  35.          BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
  36.             AutoSize        =   1
  37.             Object.Width           =   4313
  38.             Text            =   "String Warp:"
  39.             TextSave        =   "String Warp:"
  40.             Key             =   "SWarp"
  41.          EndProperty
  42.          BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628} 
  43.             AutoSize        =   1
  44.             Object.Width           =   4313
  45.             Text            =   "Code Warp"
  46.             TextSave        =   "Code Warp"
  47.             Key             =   "CWarp"
  48.          EndProperty
  49.       EndProperty
  50.    End
  51.    Begin VB.CommandButton Button 
  52.       Caption         =   "Clear"
  53.       Height          =   255
  54.       Index           =   2
  55.       Left            =   120
  56.       TabIndex        =   4
  57.       Top             =   3360
  58.       Width           =   1335
  59.    End
  60.    Begin VB.CommandButton btnCopyString 
  61.       Caption         =   "Copy String"
  62.       Height          =   255
  63.       Index           =   0
  64.       Left            =   3720
  65.       TabIndex        =   3
  66.       Top             =   3360
  67.       Width           =   1335
  68.    End
  69.    Begin VB.CommandButton btnShowString 
  70.       Caption         =   "Show String"
  71.       Height          =   255
  72.       Index           =   0
  73.       Left            =   2280
  74.       TabIndex        =   2
  75.       Top             =   3360
  76.       Width           =   1335
  77.    End
  78.    Begin VB.TextBox Text1 
  79.       Height          =   375
  80.       Left            =   1440
  81.       TabIndex        =   0
  82.       Top             =   0
  83.       Width           =   3615
  84.    End
  85.    Begin VB.Label Label1 
  86.       Caption         =   "Variable Name:"
  87.       Height          =   255
  88.       Left            =   240
  89.       TabIndex        =   5
  90.       Top             =   120
  91.       Width           =   1455
  92.    End
  93.    Begin VB.Menu mainMenuSM 
  94.       Caption         =   "&String Maker"
  95.       Begin VB.Menu mainMenuSMShow 
  96.          Caption         =   "&Show Coded String..."
  97.       End
  98.       Begin VB.Menu mainMenuSMClip 
  99.          Caption         =   "Send to &ClipBoard"
  100.       End
  101.       Begin VB.Menu mainMenuSMLine 
  102.          Caption         =   "-"
  103.       End
  104.       Begin VB.Menu mainMenuSMExit 
  105.          Caption         =   "&Exit"
  106.       End
  107.    End
  108.    Begin VB.Menu mainMenuOptions 
  109.       Caption         =   "&Options"
  110.       Begin VB.Menu mainMenuOptionsSW 
  111.          Caption         =   "Set &String Warp..."
  112.       End
  113.       Begin VB.Menu mainMenuOptionsCW 
  114.          Caption         =   "Set &Code Warp..."
  115.       End
  116.       Begin VB.Menu mainMenuOptionsVariable 
  117.          Caption         =   "Use &Variable"
  118.          Checked         =   -1  'True
  119.       End
  120.    End
  121.    Begin VB.Menu mainMenuHelp 
  122.       Caption         =   "&Help"
  123.       Begin VB.Menu mainMenuHelpH 
  124.          Caption         =   "&Help..."
  125.       End
  126.       Begin VB.Menu mainMenuHelpA 
  127.          Caption         =   "&About..."
  128.       End
  129.    End
  130. Attribute VB_Name = "Form1"
  131. Attribute VB_GlobalNameSpace = False
  132. Attribute VB_Creatable = False
  133. Attribute VB_PredeclaredId = True
  134. Attribute VB_Exposed = False
  135. Public sWarpVar As Integer, cWarpVAr As Integer
  136. Private Sub btnShowString_Click(Index As Integer)
  137. Debug.Print Str(Asc(Text1.Text))
  138. End Sub
  139. Private Sub Button_Click(Index As Integer)
  140. Text2.Text = ""
  141. End Sub
  142. Private Sub Form_Load()
  143. sWarpVar = 30
  144. Status.Panels(1).Text = "String Warp Not Yet Implemented"
  145. Status.Panels(1).Enabled = False
  146. Status.Panels(2).Text = "Code Warp Not Yet Implemented"
  147. Status.Panels(2).Enabled = False
  148. End Sub
  149. Private Sub mainMenuSMExit_Click()
  150. End Sub
  151.